home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 3_2004-2005.ISO / Data / Zips / Simple_Bat1735174192004.psc / Batch for Dummies / Append.bat next >
DOS Batch File  |  2004-04-13  |  566b  |  14 lines

  1. @echo off
  2.  
  3. rem This shows you how to write to the end of a file. This will not overwrite it but open it up,
  4. rem go to the end of the file and then write the data there. lets 1st create a file in the C: 
  5. rem drive called test.txt. It will contain the words sonic. Then we will open up the file again
  6. rem and put random numbers at the end of it.
  7.  
  8. echo sonic >c:\test.txt
  9.  
  10. rem now lets put random numbers, since the file is already created.
  11.  
  12. echo %random% >>c:\test.txt
  13.  
  14. rem notice the two >> at the end this time. When you have to >> that means to append.